home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / system / daemons / syslog_f.z / syslog_f / syslogd / RCS / Makefile,v next >
Encoding:
Text File  |  1993-03-17  |  709 b   |  60 lines

  1. head    1.2;
  2. access;
  3. symbols;
  4. locks; strict;
  5. comment    @# @;
  6.  
  7.  
  8. 1.2
  9. date    93.03.17.20.38.14;    author negaard;    state Exp;
  10. branches;
  11. next    1.1;
  12.  
  13. 1.1
  14. date    93.03.17.19.49.41;    author negaard;    state Exp;
  15. branches;
  16. next    ;
  17.  
  18.  
  19. desc
  20. @BSD386 Makefile.
  21. @
  22.  
  23.  
  24. 1.2
  25. log
  26. @Changes for linux.
  27. @
  28. text
  29. @#    @@(#)Makefile    5.7 (Berkeley) 9/30/90
  30.  
  31. CFLAGS=    -D_POSIX_SOURCE -DSYSLOG_USE_FIFO
  32. LDFLAGS= -N -s
  33. PROG=    syslogd
  34. SRCS=    syslogd.c daemon.c ttymsg.c
  35. OBJS:=    $(subst .c,.o, $(SRCS))
  36. MAN5=    syslog.conf.0
  37. MAN8=    syslogd.0
  38.  
  39. $(PROG): $(OBJS)
  40.     $(CC) $(LDFLAGS) -o $(PROG) $(OBJS)
  41. @
  42.  
  43.  
  44. 1.1
  45. log
  46. @Initial revision
  47. @
  48. text
  49. @d3 2
  50. d6 2
  51. a7 2
  52. SRCS=    syslogd.c ttymsg.c
  53. .PATH:    ${.CURDIR}/../../usr.bin/wall
  54. a9 1
  55. LDADD=    -lutil
  56. d11 2
  57. a12 1
  58. .include <bsd.prog.mk>
  59. @
  60.